From c17389c371e694fbc8a9a11ce5b234a19c195c37 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Sun, 29 Oct 2006 09:27:24 -0700 Subject: [PATCH] [IA64] MCA support - Add softirq handle for MCA Signed-off-by: Yutaka Ezaki Signed-off-by: Masaki Kanno Signed-off-by: Kazuhiro Suzuki --- xen/include/xen/softirq.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xen/include/xen/softirq.h b/xen/include/xen/softirq.h index 00e561dc86..977a1ad5dc 100644 --- a/xen/include/xen/softirq.h +++ b/xen/include/xen/softirq.h @@ -10,7 +10,13 @@ #define PAGE_SCRUB_SOFTIRQ 5 #define DOMAIN_SHUTDOWN_FINALISE_SOFTIRQ 6 #define TRACE_SOFTIRQ 7 +#ifdef __ia64__ +#define CMC_DISABLE_SOFTIRQ 8 +#define CMC_ENABLE_SOFTIRQ 9 +#define NR_SOFTIRQS 10 +#else /* __ia64__ */ #define NR_SOFTIRQS 8 +#endif /* __ia64__ */ #ifndef __ASSEMBLY__ -- 2.30.2